home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / MRUTC.LZH / VIDPOKE.C < prev   
Text File  |  1988-01-19  |  246b  |  16 lines

  1. /* --------- vidpoke.c ---------- */
  2.  
  3. #include <dos.h>
  4. #define VSEG 0xb800
  5.  
  6. char vdata [] = "What hath Kahn wrought?";
  7.  
  8. void main()
  9. {
  10.     char *vp;
  11.     int v;
  12.  
  13.     for (v = 0, vp = vdata; *vp; v += 2, vp++)
  14.         poke(VSEG, v, 0x700 | *vp);
  15. }
  16.